home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 126-150 / scopedisk132 / algorhythms / source / files.h < prev    next >
C/C++ Source or Header  |  1995-03-19  |  704b  |  18 lines

  1. /*files.h*/
  2. /* for AlgoRhythms.c by Thomas E. Janzen */
  3. int Save_File(char *FileName, const double *TotalDuration, 
  4.     const int *ScaleLength, const int Scale[], const int *voices,
  5.     const int *tempo,
  6.     const struct Parameter *Pitch, const struct Parameter *Thickness,
  7.     const struct Parameter *Dynamics, 
  8.     const struct Parameter *Duration,
  9.     const struct NoteEvent *Events,
  10.     double MinNoteLen, double MaxNoteLen);
  11.     
  12. int Read_File(char *FileName, double *TotalDuration,  
  13.     int *ScaleLength, int Scale[], int *voices, int *tempo,
  14.     struct Parameter *Pitch, struct Parameter *Thickness,
  15.     struct Parameter *Dynamics, struct Parameter *Duration,
  16.     struct NoteEvent *Events,
  17.     double *MinNoteLen, double *MaxNoteLen);
  18.